.b-service-list__items {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: -15px -10px;
}
.b-service-list__item {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 30px;
	background: #FFFFFF;
	border: 1px solid rgba(30, 32, 37, 0.1);
	border-radius: 15px;
	padding: 20px;
	width: calc(20% - 20px);
	margin: 15px 10px;
}
.b-service-list__item:hover {
	-webkit-box-shadow: 0 11px 25px rgba(34, 36, 44, 0.15);
	box-shadow: 0 11px 25px rgba(34, 36, 44, 0.15);
	text-decoration: none;
}
.b-service-list__item[data-expand="false"] {
	display: none;
}
.b-service-list__item[data-search-active="false"] {
	display: none !important;
}
.b-service-list__image {
	width: 100%;
	padding-top: 65%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 30px;
}
.b-service-list__info {
	width: 100%;
}
.b-service-list__name {
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 160%;
	color: #1E2025;
}
.b-service-list__link {
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 170%;
	color: #2FC9C8;
	margin-top: 15px;
}
.b-service-list__link:hover {
	text-decoration: none;
}
.b-service-list__link span {
	margin-right: 10px;
}
.b-service-list__link * {
	display: inline-block;
	vertical-align: middle;
}
.b-service-list__btn-block {
	text-align: center;
	margin-top: 30px;
}
.b-service-list__btn {
	background: linear-gradient(91.49deg, #2FC9C8 15.88%, #29DDDC 93.02%);
	border-radius: 25px;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 170%;
	color: #FFFFFF;
	padding: 11px 40px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
}
.b-service-list__btn .b-service-list__text-show {
	display: inline-block;
}
.b-service-list__btn .b-service-list__text-hide {
	display: none;
}
.b-service-list__btn[data-active="true"] .b-service-list__text-show {
	display: none;
}
.b-service-list__btn[data-active="true"] .b-service-list__text-hide {
	display: inline-block;
}


.b-service-list__search {
	padding: 12px 20px;
	background: rgba(51, 51, 51, 0.03);
	border-radius: 10px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	justify-content: space-between;
}
.b-service-list__search input {
	font-weight: 400;
	font-size: 14px;
	line-height: 170%;
	color: rgba(51, 51, 51, 0.7);
	border: 0;
	background: transparent;
	width: 100%;
}


@media (max-width: 1000px) {
	.b-service-list__item {
		width: calc(25% - 20px);
	}
}
@media (max-width: 768px) {
	.b-service-list__item {
		width: calc(33.33% - 20px);
	}
}

@media (max-width: 425px) {
	.b-service-list__item {
		width: 100%;
	}
	.b-service-list__btn {
		width: 100%;
	}
}